body
{
    background-color: rgb(175, 178, 220);
}
/* navbar styling */
.navbar
{
    background-color: goldenrod; 
    width: 100%;
   
    
}
.d-flex
{
    padding-right:-5px ;
    padding-bottom:1%;
}
.navbar-brand img
{
    border-radius: 8px;
}
/*footer part */
/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    font-family: Arial, sans-serif;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-logo img {
    width: 40px;
    height: 40px;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a, .footer-social a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-links a:hover, .footer-social a:hover {
    text-decoration: underline;
  }
  
  .footer-social a {
    display: block;
    margin-bottom: 10px;
  }
  
  .footer-contact p {
    margin: 0;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    border-top: 1px solid #444;
    padding-top: 20px;
  }
  
  .footer-bottom a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-bottom a:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-links ul {
      padding-top: 20px;
    }
  }
  

/* AUCTION ITEM LISTING  styles*/
.card {
    border-radius: 10px;
    
}

.card-body {
    padding: 2rem;
}

h2 
{
    font-size: 1.8em;
    font-weight: 600;
}
.btn-block
{
    padding: 10px;
    font-size: 1.1em;
}
/*form validation code */
.formerror
{
    color: red;
}
.but
{
    border-radius: 9px;
    width: 100px;
    height: 50px;
    font-size: 25px;
    margin: 22px 20px; 
}